home *** CD-ROM | disk | FTP | other *** search
/ Stone Design / Stone Design.iso / Stone_Friends / Wave / WavesWorld / Source / Libraries / tcl7.4b3 / doc / continue.n < prev    next >
Encoding:
Text File  |  1994-12-17  |  1.0 KB  |  35 lines

  1. '\"
  2. '\" Copyright (c) 1993-1994 The Regents of the University of California.
  3. '\" Copyright (c) 1994 Sun Microsystems, Inc.
  4. '\"
  5. '\" See the file "license.terms" for information on usage and redistribution
  6. '\" of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  7. '\" 
  8. '\" @(#) continue.n 1.3 94/12/17 16:17:45
  9. '\" 
  10. .so man.macros
  11. .HS continue tcl
  12. .BS
  13. '\" Note:  do not modify the .SH NAME line immediately below!
  14. .SH NAME
  15. continue \- Skip to the next iteration of a loop
  16. .SH SYNOPSIS
  17. \fBcontinue\fR
  18. .BE
  19.  
  20. .SH DESCRIPTION
  21. .PP
  22. This command is typically invoked inside the body of a looping command
  23. such as \fBfor\fR or \fBforeach\fR or \fBwhile\fR.
  24. It returns a TCL_CONTINUE code, which causes a continue exception
  25. to occur.
  26. The exception causes the current script to be aborted
  27. out to the the innermost containing loop command, which then
  28. continues with the next iteration of the loop.
  29. Catch exceptions are also handled in a few other situations, such
  30. as the \fBcatch\fR command and the outermost scripts of procedure
  31. bodies.
  32.  
  33. .SH KEYWORDS
  34. continue, iteration, loop
  35.